0af390e314b214558df8b2c5baefe361f3a49d0e,src/main/java/net/cryptonomica/entities/CryptonomicaUser.java,CryptonomicaUser,CryptonomicaUser,#User#PGPPublicKeyData#NewUserRegistrationForm#,90

Before Change


        this.webSafeStringKey = Key.create(
                CryptonomicaUser.class, googleUser.getUserId()
        ).toWebSafeString();
        this.firstName = pgpPublicKeyData.getFirstName();
        this.lastName = pgpPublicKeyData.getLastName();
        this.birthday = newUserRegistrationForm.getBirthday();
        this.googleUser = googleUser;

After Change


        this.webSafeStringKey = Key.create(
                CryptonomicaUser.class, googleUser.getUserId()
        ).toWebSafeString();
        this.firstName = pgpPublicKeyData.getFirstName().toLowerCase();
        this.lastName = pgpPublicKeyData.getLastName().toLowerCase();
        this.birthday = newUserRegistrationForm.getBirthday();
        this.googleUser = googleUser;